476fd6fef4961e8a5b602941675bb5db2e8e6251,core/languageDesign/make/solutions/jetbrains.mps.make.tests/source_gen/jetbrains/mps/make/generator/Generator_Test.java,Generator_Test,test_progress,#,201

Before Change


      }
    });

    IScript scr = scb.withFacet(new IFacet.Name("Maker")).withFacet(new IFacet.Name("Worker")).withTarget(new ITarget.Name("Make")).withMonitors(new IMonitors.Stub(new IConfigMonitor.Stub(), new IJobMonitor.Stub(pstub))).toScript();
    Assert.assertTrue(scr.isValid());
    ITarget dt = scr.defaultTarget();
    Assert.assertNotNull(dt);

After Change


      }
    });

    final IMonitors mons = new IMonitors.Stub(new IConfigMonitor.Stub(), new IJobMonitor.Stub(pstub));
    IScript scr = scb.withFacet(new IFacet.Name("Maker")).withFacet(new IFacet.Name("Worker")).withTarget(new ITarget.Name("Make")).toScript();
    scr = new IScript.StubBoss(scr) {
      @Override
      public IMonitors monitors() {
        return mons;